SOCKETS.WRITEB Function

The SOCKETS object is deprecated and may be removed in a future release. Use INET::Socket instead.

Syntax

V WriteB(B Blob)

.WRITEB( Data as B [, Length as N ] )

Arguments

Blob

B

Data

The binary data to send.

Length

Optional. default = LEN( Data ). The number of bytes to send.

Description

Write blob to socket.

Discussion

The .WRITEB() method writes binary data to the Internet connection. Transmission will stop at the end of the Data or after Length bytes, whichever is smaller.

See Also